home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-546.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  141 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(15441);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2004-0884");
  13.  
  14.  name["english"] = "RHSA-2004-546: cyrus";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated cyrus-sasl packages that fix a setuid and setgid application
  21.   vulnerability are now available.
  22.  
  23.   [Updated 7th October 2004]
  24.   Revised cryus-sasl packages have been added for Red Hat Enterprise Linux 3;
  25.   the patch in the previous packages broke interaction with ldap.
  26.  
  27.   The cyrus-sasl package contains the Cyrus implementation of SASL. SASL is
  28.   the Simple Authentication and Security Layer, a method for adding
  29.   authentication support to connection-based protocols.
  30.  
  31.   At application startup, libsasl and libsasl2 attempts to build a list
  32.   of all available SASL plug-ins which are available on the system. To do
  33.   so, the libraries search for and attempt to load every shared library found
  34.   within the plug-in directory. This location can be set with the SASL_PATH
  35.   environment variable.
  36.  
  37.   In situations where an untrusted local user can affect the environment of a
  38.   privileged process, this behavior could be exploited to run arbitrary code
  39.   with the privileges of a setuid or setgid application. The Common
  40.   Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name
  41.   CAN-2004-0884 to this issue.
  42.  
  43.   Users of cyrus-sasl should upgrade to these updated packages, which contain
  44.   backported patches and are not vulnerable to this issue.
  45.  
  46.  
  47.  
  48.  
  49. Solution : http://rhn.redhat.com/errata/RHSA-2004-546.html
  50. Risk factor : High';
  51.  
  52.  script_description(english:desc["english"]);
  53.  
  54.  summary["english"] = "Check for the version of the cyrus packages";
  55.  script_summary(english:summary["english"]);
  56.  
  57.  script_category(ACT_GATHER_INFO);
  58.  
  59.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  60.  family["english"] = "Red Hat Local Security Checks";
  61.  script_family(english:family["english"]);
  62.  
  63.  script_dependencies("ssh_get_info.nasl");
  64.  
  65.  script_require_keys("Host/RedHat/rpm-list");
  66.  exit(0);
  67. }
  68.  
  69. include("rpm.inc");
  70. if ( rpm_check( reference:"cyrus-sasl-1.5.24-26", release:"RHEL2.1") )
  71. {
  72.  security_hole(0);
  73.  exit(0);
  74. }
  75. if ( rpm_check( reference:"cyrus-sasl-devel-1.5.24-26", release:"RHEL2.1") )
  76. {
  77.  security_hole(0);
  78.  exit(0);
  79. }
  80. if ( rpm_check( reference:"cyrus-sasl-gssapi-1.5.24-26", release:"RHEL2.1") )
  81. {
  82.  security_hole(0);
  83.  exit(0);
  84. }
  85. if ( rpm_check( reference:"cyrus-sasl-md5-1.5.24-26", release:"RHEL2.1") )
  86. {
  87.  security_hole(0);
  88.  exit(0);
  89. }
  90. if ( rpm_check( reference:"cyrus-sasl-plain-1.5.24-26", release:"RHEL2.1") )
  91. {
  92.  security_hole(0);
  93.  exit(0);
  94. }
  95. if ( rpm_check( reference:"cyrus-sasl-2.1.15-10", release:"RHEL3") )
  96. {
  97.  security_hole(0);
  98.  exit(0);
  99. }
  100. if ( rpm_check( reference:"cyrus-sasl-devel-2.1.15-10", release:"RHEL3") )
  101. {
  102.  security_hole(0);
  103.  exit(0);
  104. }
  105. if ( rpm_check( reference:"cyrus-sasl-gssapi-2.1.15-10", release:"RHEL3") )
  106. {
  107.  security_hole(0);
  108.  exit(0);
  109. }
  110. if ( rpm_check( reference:"cyrus-sasl-md5-2.1.15-10", release:"RHEL3") )
  111. {
  112.  security_hole(0);
  113.  exit(0);
  114. }
  115. if ( rpm_check( reference:"cyrus-sasl-plain-2.1.15-10", release:"RHEL3") )
  116. {
  117.  security_hole(0);
  118.  exit(0);
  119. }
  120. if ( rpm_check( reference:"cyrus-sasl-2.1.15-10", release:"RHEL3") )
  121. {
  122.  security_hole(0);
  123.  exit(0);
  124. }
  125. if ( rpm_check( reference:"cyrus-sasl-2.1.15-10", release:"RHEL3") )
  126. {
  127.  security_hole(0);
  128.  exit(0);
  129. }
  130.  
  131. if ( rpm_exists(rpm:"cyrus-", release:"RHEL2.1") )
  132. {
  133.  set_kb_item(name:"CAN-2004-0884", value:TRUE);
  134. }
  135. if ( rpm_exists(rpm:"cyrus-", release:"RHEL3") )
  136. {
  137.  set_kb_item(name:"CAN-2004-0884", value:TRUE);
  138. }
  139.  
  140. set_kb_item(name:"RHSA-2004-546", value:TRUE);
  141.